home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-11-19 | 751 b | 32 lines | [TEXT/MPS ] |
- /*
- File: MathFSetAdd.exp
-
- Contains: Exports file for the MathFSetAdd function set.
-
- Copyright: © 1993 by Apple Computer, Inc., all rights reserved.
-
- */
-
-
- #include "MathFSet.h"
-
- #define kMathFSetAddID "appl:math$Add,1.1"
-
- Library
- {
- id = "appl:math$Add";
- version = 1.1;
- memory = client;
- };
-
- // When we export the function set, we need to specify the interface ID so users will
- // know it has the "Math" function set interface. We also need to put "extern"
- // in front of the functions we export so they will also be exported by name which
- // allows users to get the address of the functions by calling GetFunctionPointer().
-
- FunctionSet MathFSetAdd
- {
- interfaceID = kMathFSetInterfaceID;
- exports = extern MathFunction1, extern MathFunction2;
- };
-